home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 026-050 / scopedisk29 / batcher / batcher.doc < prev    next >
Text File  |  1995-03-18  |  864b  |  17 lines

  1.      
  2. BATCHER By WESLEY HOWE
  3.      Batcher is a 216-byte Assembly program that allows batch files to be
  4. executed from the CLI without explicitly using the execute command. It
  5. operates by looking for the name by which it was executed, appending the
  6. suffix ".bat" to this name. It attempts to execute it, using the AmigaDOS
  7. execute function, passing any remaining parameters on the command-line tail
  8. to the batch file. The program "RUN" needs to be in the C directory for this
  9. to work.
  10.      To use it, rename the assembled program from "Batcher" to the name of
  11. the DOS batch file you want to execute, and rename the batch file to the
  12. same name with ".bat" on the end. For example, to execute a 'C' compilation
  13. and link, make a batch file to do this named "cc.bat". Copy Batcher to cc.
  14. Then you can execute the compilation by typing "cc <program name>" from the
  15. CLI.
  16.  
  17.